home *** CD-ROM | disk | FTP | other *** search
/ Mission to McDonaldLand / Mission To McDonaldLand.iso / maexp.dxr / 00041_Script_41 < prev    next >
Text File  |  1998-10-22  |  606b  |  23 lines

  1. -- Frame    Hold on Current 
  2.  
  3. -- Nav
  4.  
  5.  
  6. -- This can be a frame script or sprite script,
  7. -- drag it into the frame script cell to have the movie loop on the current frame
  8. -- or drag it to a sprite to have the same effect.
  9.  
  10. on mouseUp
  11.   go to (the frame +1)
  12. end
  13.  
  14. on exitFrame
  15.   if soundBusy(1) then go the frame
  16.   else go to (the frame +1)
  17. end if
  18. end
  19.  
  20. on getBehaviorDescription  
  21. return ¼
  22. "Loops the Playback Head on the current frame to pause the movie. All interactive elements in the frame continue to function.  Drag to a sprite or frame in the script channel.  No parameters."  
  23. end